SubFlowCall
The SubFlowCall class represents a step in a workflow where a sub-flow is called. It allows a workflow to invoke another workflow or sub-flow and return values from the sub-flow.
Properties
| Name | Description |
|---|---|
| Caption | The caption dictionary representing localized captions for the flow object. |
| Key | A unique identifier for the workflow step. |
| Name | Name for the workflow step. |
| ReturnValues | Gets or sets the list of return values from the sub-flow that was invoked. These values can be used later in the workflow. |
| WorkflowCodeInstance | The workflow code instance associated with the flow object. |
| CachedDMObjects | The cached document management objects related to the flow object. |
| TypeCode | The type code associated with the flow object. |
| SubFlowObject | Gets or sets the sub-flow object metadata. Represents the sub-flow being invoked by the SubFlowCall step. |
Constructors
| Name | Description |
|---|---|
| SubFlowCall(name, workflowData, workflowCodeInstance) | Constructor for the SubFlowCall class. Initializes a new instance of the SubFlowCall class. |
| SubFlowCall(name, workflowData, workflowCodeInstance) | Constructor for the SubFlowCall class. Initializes a new instance of the SubFlowCall class. |
Methods
| Name | Description |
|---|---|
| Initialize() | Initializes the SubFlowCall step. This method is an implementation of the abstract Initialize method from the base class. |
Events
| Name | Description |
|---|---|
| OnAfterExecution(sender, args) | Occurs after the execution of the workflow step. |
| OnBeforeExecution(sender, args) | Occurs before the execution of the workflow step. |